77 lines
2.2 KiB
TypeScript
77 lines
2.2 KiB
TypeScript
import { internal } from "@app/lib/api";
|
|
import { authCookieHeader } from "@app/lib/api/cookies";
|
|
import { AxiosResponse } from "axios";
|
|
import { GetOrgResponse } from "@server/routers/org";
|
|
import { cache } from "react";
|
|
import OrgProvider from "@app/providers/OrgProvider";
|
|
import { ListRolesResponse } from "@server/routers/role";
|
|
import RolesTable, { RoleRow } from "../../../../../components/RolesTable";
|
|
import SettingsSectionTitle from "@app/components/SettingsSectionTitle";
|
|
import { getTranslations } from 'next-intl/server';
|
|
|
|
type RolesPageProps = {
|
|
params: Promise<{ orgId: string }>;
|
|
};
|
|
|
|
export const dynamic = "force-dynamic";
|
|
|
|
export default async function RolesPage(props: RolesPageProps) {
|
|
const params = await props.params;
|
|
|
|
let roles: ListRolesResponse["roles"] = [];
|
|
let hasInvitations = false;
|
|
|
|
const res = await internal
|
|
.get<
|
|
AxiosResponse<ListRolesResponse>
|
|
>(`/org/${params.orgId}/roles`, await authCookieHeader())
|
|
.catch((e) => {});
|
|
|
|
if (res && res.status === 200) {
|
|
roles = res.data.data.roles;
|
|
}
|
|
|
|
const invitationsRes = await internal
|
|
.get<
|
|
AxiosResponse<{
|
|
pagination: { total: number };
|
|
}>
|
|
>(
|
|
`/org/${params.orgId}/invitations?limit=1&offset=0`,
|
|
await authCookieHeader()
|
|
)
|
|
.catch((e) => {});
|
|
|
|
if (invitationsRes && invitationsRes.status === 200) {
|
|
hasInvitations = invitationsRes.data.data.pagination.total > 0;
|
|
}
|
|
|
|
let org: GetOrgResponse | null = null;
|
|
const getOrg = cache(async () =>
|
|
internal
|
|
.get<
|
|
AxiosResponse<GetOrgResponse>
|
|
>(`/org/${params.orgId}`, await authCookieHeader())
|
|
.catch((e) => {})
|
|
);
|
|
const orgRes = await getOrg();
|
|
|
|
if (orgRes && orgRes.status === 200) {
|
|
org = orgRes.data.data;
|
|
}
|
|
|
|
const roleRows: RoleRow[] = roles;
|
|
const t = await getTranslations();
|
|
|
|
return (
|
|
<>
|
|
<SettingsSectionTitle
|
|
title={t('accessRolesManage')}
|
|
description={t('accessRolesDescription')}
|
|
/>
|
|
<OrgProvider org={org}>
|
|
<RolesTable roles={roleRows} />
|
|
</OrgProvider>
|
|
</>
|
|
);
|
|
}
|